/*=================================
        COLLECTION PAGE
=================================*/

.collection-page {
    width: 100%;
    overflow: hidden;
}

.collection-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 75px 20px 35px;
}

.collection-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.collection-label,
.feature-label {
    display: block;
    color: #9A7B4F;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 13px;
}

.collection-heading h1 {
    color: #000001;
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.heading-line::before,
.heading-line::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #C6B184;
}

.heading-line span {
    width: 7px;
    height: 7px;
    background: #9A7B4F;
    transform: rotate(45deg);
}

.collection-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.8;
}

.collection-products {
    max-width: 1400px;
    margin: 45px auto 100px;
}

.collection-section-heading {
    margin-bottom: 42px;
}

/* Default product-card design kept consistent with the website */
.product-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.offers-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.product-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 1, .06);
    transition: transform .35s ease, box-shadow .35s ease;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 1, .12);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-hover-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    display: flex;
    justify-content: center;
    padding: 14px;
    background: rgba(0, 0, 1, .55);
    transition: bottom .35s ease;
}

.product-card:hover .product-hover-actions {
    bottom: 0;
}

.quick-add-btn {
    background: #fff;
    color: #000001;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .5px;
    transition: .3s;
    font-family: inherit;
}

.quick-add-btn:hover {
    background: #9A7B4F;
    color: #fff;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-category {
    font-size: 11px;
    color: #9A7B4F;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-name {
    font-size: 18px;
    color: #000001;
    font-family: Georgia, serif;
    margin: 8px 0 6px;
}

.product-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #000001;
}

.old-price {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

/*=================================
          EDITORIAL FEATURE
=================================*/

.collection-feature {
    max-width: 1400px;
    height: 420px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: #000001;
    border-radius: 24px;
    overflow: hidden;
}

.feature-image {
    height: 420px;
    overflow: hidden;
    background: #000001;
}

.feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.feature-content h2 {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-content p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.9;
    max-width: 430px;
}

@media(max-width:992px) {
    .collection-intro {
        padding-top: 60px;
    }

    .collection-heading h1 {
        font-size: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offers-grid {
        max-width: 100%;
    }

    .collection-feature {
        margin-left: 20px;
        margin-right: 20px;
    }

    .feature-content {
        padding: 40px;
    }

    .feature-content h2 {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    .collection-intro {
        padding: 50px 18px 25px;
    }

    .collection-heading h1 {
        font-size: 34px;
    }

    .collection-heading p {
        font-size: 14px;
    }

    .collection-products {
        margin-top: 35px;
        margin-bottom: 70px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image img {
        height: 280px;
    }

    .collection-feature {
        grid-template-columns: 1fr;
        height: auto;
        margin: 0 16px 70px;
        border-radius: 18px;
    }

    .feature-image,
    .feature-image img {
        height: 300px;
        min-height: 0;
    }

    .feature-content {
        padding: 42px 30px;
    }

    .feature-content h2 {
        font-size: 30px;
    }
}

@media(max-width:480px) {
    .collection-heading h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 320px;
    }

    .collection-feature {
        height: auto;
    }

    .feature-image {
        height: 280px;
    }

    .feature-image img {
        height: 280px;
    }

    .feature-content {
        padding: 35px 24px;
    }
}


/* ===== COLLECTION HEADING LUXURY STYLING ===== */

.collection-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px 70px;
}

.collection-heading {
    text-align: center;
    margin: 0 auto 45px;
    max-width: 760px;
}

.collection-heading h4 {
    color: #9A7B4F;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 10px;
}

.collection-heading h2 {
    color: #000001;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 14px;
    font-weight: 700;
}

.collection-heading p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    max-width: 650px;
    margin: 20px auto 0;
}

@media(max-width:992px) {
    .collection-products {
        padding: 15px 22px 55px;
    }

    .collection-heading {
        margin-bottom: 35px;
    }

    .collection-heading h2 {
        font-size: 30px;
    }
}

@media(max-width:576px) {
    .collection-products {
        padding: 10px 15px 45px;
    }

    .collection-heading {
        margin-bottom: 30px;
    }

    .collection-heading h4 {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .collection-heading h2 {
        font-size: 26px;
    }

    .collection-heading p {
        font-size: 13px;
        line-height: 1.6;
    }
}